net/http.wantConnQueue.tail (field)
9 uses
net/http (current package)
transport.go#L1281: tail []*wantConn
transport.go#L1286: return len(q.head) - q.headPos + len(q.tail)
transport.go#L1291: q.tail = append(q.tail, w)
transport.go#L1297: if len(q.tail) == 0 {
transport.go#L1301: q.head, q.headPos, q.tail = q.tail, 0, q.head[:0]
transport.go#L1314: if len(q.tail) > 0 {
transport.go#L1315: return q.tail[0]
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |